バージョン

BinarySearch<T>(IIndexedPool<T>,Func<T,Int32>) メソッド

所定の比較機能を利用してインデックスされたプール内の値に対してバイナリ検索を実行します。
シンタックス
'宣言
 
Public Overloads Shared Function BinarySearch(Of T)( _
   ByVal list As IIndexedPool(Of T), _
   ByVal comparisonFunction As Func(Of T,Integer) _
) As Integer
public static int BinarySearch<T>( 
   IIndexedPool<T> list,
   Func<T,int> comparisonFunction
)

パラメータ

list
検索する項目のプール。
comparisonFunction
プールでターゲット項目の検索に使用する比較機能。

型パラメータ

T
プール内の項目の Type。

戻り値の型

プール内で見つかった項目のインデックス。
参照